home *** CD-ROM | disk | FTP | other *** search
- head 1.1;
- access;
- symbols;
- locks
- moss:1.1; strict;
- comment @ * @;
-
-
- 1.1
- date 95.09.22.23.19.57; author moss; state Exp;
- branches;
- next ;
-
-
- desc
- @@
-
-
- 1.1
- log
- @Initial revision
- @
- text
- @/* PATH: This file contains certain info needed to locate the
- MicroEMACS files on a system dependant basis.
-
- */
-
- /* possible names and paths of help files under different OSs */
-
- char *pathname[] =
-
- #if AMIGA
- {
- ".emacsrc",
- "emacs.hlp",
- "",
- ":c/",
- ":t/"
- };
- #endif
-
- #if ST520
- {
- "emacs.rc",
- "emacs.hlp",
- "\\",
- "\\bin\\",
- "\\util\\",
- ""
- };
- #endif
-
- #if FINDER
- {
- "emacs.rc",
- "emacs.hlp",
- "/bin",
- "/sys/public",
- ""
- };
- #endif
-
- #if MSDOS
- {
- "emacs.rc",
- "emacs.hlp",
- "\\sys\\public\\",
- "\\usr\\bin\\",
- "\\bin\\",
- "\\",
- ""
- };
- #endif
-
- #if V7 | BSD | USG
- {
- ".emacsrc",
- "emacs.hlp",
- "/usr/local/",
- "/usr/lib/",
- ""
- };
- #endif
-
- #if VMS
- {
- "emacs.rc",
- "emacs.hlp",
- "",
- "sys$sysdevice:[vmstools]"
- };
- #endif
-
- #define NPNAMES (sizeof(pathname)/sizeof(char *))
- @
-